@font-face {
  font-family: mainFont;
  src: url(/fonts/CONSOLAZ.TTF);
}
@font-face {
  font-family: secondFont;
  src: url(/fonts/BAHNSCHRIFT.TTF);
}

h1{
  font-family: mainFont;
}

h2{
  font-family: secondFont;
}

a {
  font-family: secondFont;
  color: white;
}

a:hover {
  color: #5500ff;
}

ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;

}

body{
    width: 100vw;
    height: auto;
    padding: 0;
    margin: 0;
    background-color: black;
}

ul.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #262525;
    position: sticky;
    height: auto;
    overflow: auto;
    top: 0;
}


ul.navbar li a {
    display: block;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    float: left;
}

ul.navbar li a.active {
    background-color: #5500ff;
    color: white;
}

ul.navbar li a:hover:not(.active) {
    background-color: #555555;
    color: white;
}

main {
    height: 100vh;
    align-content: center;
}

.content {
  text-align: center;
  position: relative;
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.medias {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin: auto;
  text-align: center;
}

.link {
  text-align: center;
  margin: auto;
  padding: auto;
  text-decoration: none;
}

main h1 {
  color: white;
  font-size: 8em;
}

main h2 {
  color: white;
  font-size: 3em;
}

.backgroung_img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.logo_img {
  width: 50vw;
  min-width: 400px;
}

@media screen and (max-width: 900px) {
  ul.navbar {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  ul.navbar li a {
    float: none;
    padding: 15px;
    text-align: center;
  }
  
  div.content {margin-left: 0;}
}

@media screen and (max-width: 400px) {
  ul.navbar li a {
    text-align: center;
    float: none;
  }
}